

  /*PARA LA PAGINA DE LECTORES FILTRAR PRODUCTOS*/

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #cabae9, #8ab1bf); /* Color de fondo del cuerpo de la página */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  /* Encabezado con logo */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #cabae9, #8ab1bf); /* Color suave y profesional */
    padding: 10px;
    position: relative;
    overflow: hidden;
  }
  
  /* Contenedor del logo */
  .logo-container {
    position: relative;
    width: 100px;
    height: 100px;
  }
  
  /* Imagen PNG sin fondo, ajustada al tamaño */
  .logo-container img {
    width: 200%;
    height: auto;
    display: block;
    animation: float 3s ease-in-out infinite;
  }
  
  /* Animación sutil para el logo */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  /* Título de la empresa con efecto */
  .company-name {
    color: #f30d0d;
    font-family: 'Orbitron';
    font-size: 4em;
    font-weight: 500;
    margin-left: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: float 3s ease-in-out infinite;
  }
  
  /* Estilo para la barra decorativa o elementos adicionales si quieres */
  .decor {
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 3em;
    color: rgba(255,255,255,0.2);
    transform: rotate(20deg);
  }
  
  /* Añadir algunos efectos adicionales */
  @media (max-width: 768px) {
    .header {
      flex-direction: column;
      align-items: center;
      padding: 10px;
    }
  
    .company-name {
      font-size: 1.5em;
      margin: 10px 0;
      text-align: center;
    }
  }

/*BOTONES DE ARRIBA A LA DERECHA
  /* Contenedor del combobox */
  .combo-container {
    display: flex;
    gap: 5px; /* espacio entre opciones, en línea */
    flex-wrap: wrap; /* permitir varias líneas si se desea */
    justify-content: flex-end; /* Alineados a la derecha */
    background: linear-gradient(135deg, #cabae9, #8ab1bf);

  }
  
  /* Estilo de cada opción (botón) */
  .option {
    padding: 3px 20px;
    background-color: linear-gradient(135deg, #cabae9, #8ab1bf); /* colores suaves y profesionales */
    color: #141414;
    border-radius: 3px;
    cursor: pointer;
    justify-content: flex-end;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: bold;
  }

  /* Efecto al pasar el mouse */
  .option:hover {
    background-color: #4c06ee;
    transform: scale(1.05);
  }

/*LINEAS
   /* Línea interactiva inferior */
   .linea-inferior {
    height: 4px;
    background-color: #ccc;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }
  /* Línea con efecto en hover */
  .linea-superior:hover,
  .linea-inferior:hover {
    background-color: #ff7f50;
    transform: scale(1.05);
  }
   /* Línea interactiva superior */
   .linea-superior {
    height: 4px;
    background-color: #ccc;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }


  /*DISEÑO DE BOTON*/


  /* Contenedor de botones */
  .buttons-container {
    display: flex;
    gap: 20px; /* espacio entre botones */
    justify-content: center;
  }

  /* Estilo de cada botón */
.btn {
  padding: 8px 25px;
  font-size: 1.1em;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none; /* quitar subrayado si usas <a> */
  display: inline-block;
}

/* Hover y efecto al hacer clic */
.btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

  /* CONTENEDOR PRINCIPAL: contenido */
  .contenido {
    display: flex;
    flex: 1; /* ocupa todo el espacio disponible */
    flex-direction: row;
  }

  /* Sidebar filtros */
  .sidebar {
    width: 220px;
    background: linear-gradient(135deg, #a19aaf, #72bbd6);
    padding: 15px;
    box-sizing: border-box;
    color: #131212;
    font-size: 18px;
  }

  .sidebar h2 {
    margin-top: 0;
  }

  /* Lista de filtros */
  .filters {
    display: flex;
    flex-direction: column;
  }

  .filters label {
    margin: 8px 0;
    cursor: pointer;
    font-size: 0.95em;
  }

  /* Contenedor de productos */
  .contenedor {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Tarjeta producto */
  .tarjeta {
    background-color: #feffff;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.1s, box-shadow 0.1s;
  }

  .tarjeta:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .tarjeta img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
  }

  .nombre {
    text-align: center;
    padding: 10px 0;
    background-color: #dcdcf5;
    font-weight: bold;
    color: #1d1c1c;
    font-size: 11px;
  }

  /* PIE DE PAGINA */

  /*PARTE FINAL ABAJO */
  

  footer {
    background-color: #000;
    padding: 40px 20px;
    color: #fff;
    font-family: Arial, sans-serif;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }

  /* Columnas de enlaces */
  .column {
    min-width: 150px;
  }

  h4 {
    margin-bottom: 10px;
    font-weight: bold;
  }

  a {
    display: block;
    color: #00f; /* azul para los enlaces */
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s, transform 0.3s;
  }

  a:hover {
    color: #0af;
    transform: translateX(5px);
  }

      /* Contenedor del logo final */
      .logo-container1 {
        position: relative;
        width: 100px;
        height: 100px;
      }
      /* Imagen PNG sin fondo, ajustada al tamaño */
  .logo-container1 img {
    width: 200%;
    height: auto;
    display: block;
    }
